home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / Form / Sources / Binding.k next >
Encoding:
Text File  |  1996-09-17  |  1010 b   |  38 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Binding.k
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10.  
  11. #ifndef BINDING_K
  12. #define BINDING_K
  13.  
  14. // ----- Kind
  15. #define kODFFormKind "+//ISO 9070/ANSI::113722::US::CI LABS::Apple:ODFExamples:Kind:ODFForm"
  16.  
  17. // ----- Class ID
  18. #define kODFFormEditor "ODFExamples::ODFForm"
  19.  
  20. // ----- Editor User String
  21. #define kODFFormEditorUserString "ODFForm R2"
  22.  
  23. // ----- Kind User String
  24. #define kODFFormKindUserString "ODF Form Example"
  25.  
  26. // ----- Form OSType
  27. #define kODFFormOSType 'DFFD'
  28.  
  29. // ----- NMAP ID
  30. #define kKindCategoryMapID            128
  31. #define kEditorKindMapID            kKindCategoryMapID + 1
  32. #define kEditorUserStringMapID        kEditorKindMapID + 1
  33. #define kKindUserStringMapID        kEditorUserStringMapID + 1
  34. #define kOldMacOSTypeMapID            kKindUserStringMapID + 1
  35.  
  36. #endif
  37.  
  38.